python execute function from string

33

import foo
method_to_call = getattr(foo, 'bar')
result = method_to_call()
module = __import__('foo')
func = getattr(module, 'bar')
func()

Comments

Submit
0 Comments